home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 4: GNU Archives
/
Linux Cubed Series 4 - GNU Archives.iso
/
gnu
/
glibc-1.09
/
glibc-1
/
glibc-1.09.1
/
sysdeps
/
unix
/
sysv
/
utmp.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-07-18
|
327 b
|
24 lines
#ifndef _UTMP_H
#define _UTMP_H 1
#include <time.h>
struct utmp
{
#define ut_name ut_user
char ut_user[8];
char ut_id[4];
char ut_line[12];
short ut_pid;
short ut_type;
struct exit_status
{
short e_termination;
short e_exit;
} ut_exit;
time_t ut_time;
};
#endif /* utmp.h. */